home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Utilities / Programming / EnterAct 3.5 / Drag_on Modules / hAWK programs / $EmpDataTester < prev    next >
Encoding:
Text File  |  1991-09-07  |  265 b   |  9 lines  |  [TEXT/KEEN]

  1. #The first little program in "The AWK Programming Language"
  2. #by Aho, Kernighan, and Weinberger - page 1.
  3. # "Take input from:" the file "emp.data"
  4. #with "Show stdout" selected
  5.  
  6. #BEGIN { print "hello" }#optional, if you can't resist...
  7.  
  8. $3 > 0 { print $1, $2 * $3; }
  9.